Gestures where shown separately from other shortcuts in the search
results before. This restores that behaviour.
https://bugzilla.gnome.org/show_bug.cgi?id=760097
keywords = g_utf8_strdown (str, -1);
g_hash_table_insert (priv->keywords, item, keywords);
- gtk_container_add (GTK_CONTAINER (priv->search_shortcuts), item);
+ if (shortcut_type == GTK_SHORTCUT_ACCELERATOR)
+ gtk_container_add (GTK_CONTAINER (priv->search_shortcuts), item);
+ else
+ gtk_container_add (GTK_CONTAINER (priv->search_gestures), item);
g_free (title);
g_free (accelerator);